summaryrefslogtreecommitdiffstats
path: root/src/audio_core/renderer/performance/detail_aspect.cpp
blob: ef8b47cee1023f0479e4bdde99235476080998cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "audio_core/renderer/command/command_buffer.h"
#include "audio_core/renderer/command/command_generator.h"
#include "audio_core/renderer/performance/detail_aspect.h"

namespace AudioCore::Renderer {

DetailAspect::DetailAspect(CommandGenerator& command_generator_,
                           const PerformanceEntryType entry_type, const s32 node_id_,
                           const PerformanceDetailType detail_type)
    : command_generator{command_generator_}, node_id{node_id_} {
    auto perf_manager{command_generator.GetPerformanceManager()};
    if (perf_manager != nullptr && perf_manager->IsInitialized() &&
        perf_manager->IsDetailTarget(node_id) &&
        perf_manager->GetNextEntry(performance_entry_address, detail_type, entry_type, node_id)) {
        command_generator.GeneratePerformanceCommand(node_id, PerformanceState::Start,
                                                     performance_entry_address);

        initialized = true;
    }
}

} // namespace AudioCore::Renderer